home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / 1.098 / include / memory.h < prev    next >
C/C++ Source or Header  |  1990-10-26  |  1KB  |  33 lines

  1. /*
  2.  * memory.h --
  3.  *
  4.  *    Declarations of memory routines.  This file exists only for
  5.  *      backwards compatibility.  New programs should include string.h
  6.  *      to get these definitions.
  7.  *
  8.  * Copyright 1990 Regents of the University of California
  9.  * Permission to use, copy, modify, and distribute this
  10.  * software and its documentation for any purpose and without
  11.  * fee is hereby granted, provided that the above copyright
  12.  * notice appear in all copies.  The University of California
  13.  * makes no representations about the suitability of this
  14.  * software for any purpose.  It is provided "as is" without
  15.  * express or implied warranty.
  16.  *
  17.  * $Header: /sprite/src/lib/include/RCS/memory.h,v 1.1 90/10/26 01:05:30 rab Exp $
  18.  */
  19.  
  20. #ifndef _MEMORY_H
  21. #define _MEMORY_H
  22.  
  23. #include <cfuncproto.h>
  24.  
  25. extern _VoidPtr    memchr _ARGS_((_CONST char *s, int c, int n));
  26. extern int    memcmp _ARGS_((_CONST char *s1, _CONST char *s2, int n));
  27. extern _VoidPtr    memcpy _ARGS_((char *t, _CONST char *f, int n));
  28. extern _VoidPtr    memmove _ARGS_((char *t, _CONST char *f, int n));
  29. extern _VoidPtr    memset _ARGS_((char *s, int c, int n));
  30.  
  31. #endif /* _MEMORY_H */
  32.  
  33.